/*FORM SEG*/
#formdiv{
	display: flex;
	background-color: azure;
/*	min-height: 70vh;*/
	height: auto;
	width: 100vw;
	justify-content: center;
	padding: 4rem 0;
	margin-top: 1rem;
}


/*
#formdiv{
	display: flex;
	background-color: azure;
	min-height: 300px;
	width: 100vw;
	justify-content: center;
	padding: 4rem 0;
	margin-top: 1rem;
}
*/
#form{
	width: 500px;
	background-color: #FAFBFB;
	padding: 3rem;
	box-shadow: 0 0 10px #719ECE;
}
#form .inputs{
	padding: 0.8rem;
	border-width: 1px;
	border: 1px solid #6A6A6A;
	color: #333;
	font-size: 1rem;
/*	outline-color: green;*/
}
#form .inputs:focus{
/*	outline: none;*/
/*	border-left: 4px solid #6A6A6A;*/
	
}
#form .inputdivs{
	display: flex;
	flex-direction: column;
	margin-top: 0.8rem;
}
#form .labels{
	font-size: 1.2rem;
	font-weight: 500;
	margin-bottom: 0.2rem;
}

#form button{
	margin-top: 2rem;
	background-color: #A3B147;
	cursor: pointer;
	font-weight: bold;
}
#form button:focus{
/*	border-left: 1px solid #6A6A6A;*/
}
/******/
.signuplinks{
/*	text-decoration: none;*/
	color: dodgerblue;
	font-weight: 500;
/*	font-size: 1.1rem;*/
}

.links{
	text-decoration: none;
	color: dodgerblue;
	font-weight: 500;
	font-size: 1.1rem;
}
.links:hover{
	text-decoration: underline;
}





@media screen and (max-width:800px){
	#formdiv{
		overflow: hidden;
	}
	#form{
		width: 80vw;
		padding: 2rem;
	}
}








